home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / syscall / ds3100.md / RCS / sysStubs.s,v < prev    next >
Encoding:
Text File  |  1992-06-16  |  1.9 KB  |  93 lines

  1. head     1.3;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @| @;
  7.  
  8.  
  9. 1.3
  10. date     92.06.16.11.53.47;  author jhh;  state Exp;
  11. branches ;
  12. next     1.2;
  13.  
  14. 1.2
  15. date     89.12.11.12.01.04;  author jhh;  state Exp;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     89.07.11.19.52.19;  author nelson;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @Initial code from DECWRL.
  27. @
  28.  
  29.  
  30. 1.3
  31. log
  32. @added SYS_SYS_GET_HOSTNAME and SYS_SYS_SET_HOSTNAME
  33. @
  34. text
  35. @/*
  36.  *
  37.  * sysStubs.s --
  38.  *
  39.  *     Stubs for the Sys_ system calls.
  40.  *
  41.  * Copyright 1986, 1988 Regents of the University of California
  42.  * Permission to use, copy, modify, and distribute this
  43.  * software and its documentation for any purpose and without
  44.  * fee is hereby granted, provided that the above copyright
  45.  * notice appear in all copies.  The University of California
  46.  * makes no representations about the suitability of this
  47.  * software for any purpose.  It is provided "as is" without
  48.  * express or implied warranty.
  49.  *
  50.  * rcs = $Header: /sprite/src/lib/c/syscall/ds3100.md/RCS/sysStubs.s,v 1.2 89/12/11 12:01:04 jhh Exp Locker: jhh $ SPRITE (Berkeley)
  51.  *
  52.  */
  53.  
  54. #include "userSysCallInt.h"
  55.  
  56. SYS_CALL(Sys_DoNothing,     SYS_SYS_DONOTHING)
  57. SYS_CALL(Sys_GetTimeOfDay,     SYS_SYS_GETTIMEOFDAY)
  58. SYS_CALL(Sys_SetTimeOfDay,     SYS_SYS_SETTIMEOFDAY)
  59. SYS_CALL(Sys_EnableDisplay,     SYS_SYS_ENABLEDISPLAY)
  60. SYS_CALL(Sys_Shutdown,         SYS_SYS_SHUTDOWN)
  61. SYS_CALL(Sys_GetMachineInfo,     SYS_SYS_GETMACHINEINFO_NEW)
  62. SYS_CALL(Sys_Stats,        SYS_SYS_STATS)
  63. SYS_CALL(Sys_GetHostName,    SYS_SYS_GET_HOSTNAME)
  64. SYS_CALL(Sys_SetHostName,    SYS_SYS_SET_HOSTNAME)
  65. @
  66.  
  67.  
  68. 1.2
  69. log
  70. @changed Sys_GetMachineInfo to new format
  71. @
  72. text
  73. @d16 1
  74. a16 1
  75.  * rcs = $Header: /sprite/src/lib/c/syscall/ds3100.md/RCS/sysStubs.s,v 1.1 89/07/11 19:52:19 nelson Exp Locker: jhh $ SPRITE (Berkeley)
  76. d19 1
  77. d29 2
  78. @
  79.  
  80.  
  81. 1.1
  82. log
  83. @Initial revision
  84. @
  85. text
  86. @d16 1
  87. a16 1
  88.  * rcs = $Header: sysStubs.s,v 1.1 89/06/20 18:40:39 mnelson Exp $ SPRITE (Berkeley)
  89. d26 1
  90. a26 1
  91. SYS_CALL(Sys_GetMachineInfo,     SYS_SYS_GETMACHINEINFO)
  92. @
  93.